home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / util2 / gnutar11.rea < prev    next >
Text File  |  1996-01-16  |  8KB  |  160 lines

  1. Short:    GNUTar Amiga V1.1 (68000,020..040), based on V1.11.2 plus source
  2. Author:   Andreas_Kleinert@superview.ftn.sub.org
  3. Uploader: Martin Schulze (schulze@phil.uni-sb.de)
  4. Type:     util/arc
  5.  
  6.  ==============================================
  7.  = GNUTar Amiga Port of V1.11.2 (25 Mar 1993) =
  8.  = ------------------------------------------ =
  9.  = Amiga Port release version: V1.1           =
  10.  = Release Date:               16.09.1995     =
  11.  ==============================================
  12.  
  13.  1995 rework, SAS/C recompilation, GNUTar V1.11+ adaption,
  14.  and 68030/040 version by Andreas R. Kleinert (email below)
  15.  
  16.  Original port of GNUTar V1.09 done by Ed Berger (email below)
  17.  
  18.  
  19.                        *** Why ? ***
  20.  
  21.  When extracting TAR archives on the AMIGA there always had been a problem:
  22.  the only available GNUTar port was hard to find and if you got it
  23.  finally, it was quite old and just unoptimized for higher 68k CPUs.
  24.  
  25.  On the other hand, a simple recompilation wasn't easy for most people,
  26.  since the GNU-C (GCC) Compiler isn't very widely used and adaptions
  27.  for other compilers aren't that easy (as I finally found out ;-)
  28.  
  29.  
  30.                        *** How ? ***
  31.  
  32.  My first step to solve this problem was porting the nice, small and
  33.  handy "DeTar" utility from MS-DOS to Amiga.
  34.  The usage was really simple and easy, since you'd just had to call
  35.  "DeTar [archive]" and the whole archive would have been unpacked.
  36.  While searching for Bugs within DeTar (thus using the available GNUTar
  37.  port) I decided to port GNUTar directly (since there actually appeared
  38.  some effects I thought of as bugs of DeTar, but as well possibly
  39.  could have been bugs of the Amiga version of GNUTar ;-)
  40.  
  41.  So there suddenly was a new SAS/C V6.55 port of GNUTar for the Amiga,
  42.  which wasn't perfect at all, but was thought as a base for further
  43.  actions by other people (or me :-)
  44.  
  45.  People greatly reacted on this new GNUTar port and reported bugs
  46.  as well as request for also creating updates, which make use of
  47.  features of newer GNUTar versions.
  48.  
  49.  So I dropped the old V1.09 sources ported by Ed Berger and began
  50.  re-porting V1.11.2 (a beta test release) to the Amiga, still using
  51.  some of the old port stubs (but GCC stuff became useless now).
  52.  
  53.  
  54.                        *** Next ? ***
  55.  
  56.  Since V1.11.2 was a beta test release and still isn't the newest
  57.  available version of GNUTar, you may expect newer versions soon.
  58.  
  59.  
  60.                        *** Details ? ***
  61.  
  62.  Before I add the original "documentation" of Ed Berger, please take
  63.  a look at these notes:
  64.  
  65.        - some of the defines and/or functions, which hadn't be present
  66.          for the GCC are actually available for SAS/C and vice versa.
  67.          So there are still some dummy-functions or (hopefully)
  68.          equivalent replacements for such things.
  69.          See the files "sas_amiga.c" and "sas_amiga2.c" for code-replacements
  70.          and the headers within "sasinclude/" and "sasinclude/sys/"
  71.          for additional defines.
  72.          I went this way, since this prevented me from changing _anything_
  73.          within the orginal source.
  74.          The only thing to be done was setting definitions and compiler
  75.          options in the best way and then fill in the missing parts
  76.          (sounds easier, than it was %-)
  77.        - ahm...well: while compiling there occured several problems
  78.          (warnings, missing functions, which had to be substituted
  79.           by dummies, etc.). So remember: it works, but there's really
  80.           no guarantee for anything !
  81.  
  82.  
  83.                        *** Who ? ***
  84.  
  85.  Andreas R. Kleinert, Fido   2:2457/435.10
  86.                       UseNet Andreas_Kleinert@superview.ftn.sub.org
  87.                              Andreaskleinert@n2usx.sauerland.de
  88.  
  89.  
  90.                        *** History ? ***
  91.  
  92.  Revisions:
  93.  
  94.   V1.1   (16.09.1995): - did change version counting: it's too
  95.                          confusing the old way.
  96.                          The original version number of the GNUTar
  97.                          we base on, still is mentioned at the top of
  98.                          this documentation
  99.                        - completely redid the port: we now do use
  100.                          the original GNUTar 1.11.2 (a so-called beta
  101.                          test release) instead of the AMIGA/GCC-adapted
  102.                          GNUTar 1.09.
  103.                          Kind of an update: I simply copied the new
  104.                          source over the old one, changed the compiler
  105.                          settings, added some more include files and
  106.                          resolved all inconsistencies - of course
  107.                          *without directly changing any piece* of
  108.                          the original GNU C-Sources!
  109.                          (-> Regis Rampnoux, ...)
  110.                        - README and GNU-License (COPYING) also have been
  111.                          updated - old GNU license replaced by newer one.
  112.                          There was no update to Tar.man - sorry
  113.                          (but I added a specific note to it, to cover this).
  114.                        - removed some GCC-addon's, which Ed Berger had
  115.                          designed for V1.09, but which won't work with
  116.                          V1.11.2 any longer. You may take them from
  117.                          Amiga release V1.0.2 (23.07.1995) and adapt them
  118.                          - if you like or need them for GCC.
  119.                        - again did change chmod() - there was a mysterious
  120.                          effect, which caused it to be restored to the
  121.                          old, wrong way
  122.                        - replaced 68030 and 68040 versions by a combined
  123.                          68030/040 version, since SAS/C does not
  124.                          actually make any differences for our code.
  125.  
  126.   V1.0.2 (23.07.1995): - hey, found out that the base version actually
  127.                          had been released as V1.09.
  128.                          Added note to this readme.
  129.                        - two people complained, that my GNUTar port did
  130.                          not set correct flags out of "hsparwed" for the
  131.                          amiga files when extracting from archives, as the
  132.                          old GNUTar did.
  133.                          Well, foudn out, that the old one just _did_ _not_
  134.                          _change_ the default flags (always "rwed") and
  135.                          we're now just doing the same, since the mode
  136.                          field of unix TARs is either broken ("hpw" always
  137.                          after conversion Unix->Amiga) or SAS/C's definition
  138.                          for the S_IREAD (and so on) flags aren't compatible.
  139.                          Now "rwed" will be set always.
  140.                          You may change this behaviour within "sas_chmod()"
  141.                          in "sas_amiga.c".
  142.                          (-> bussjaeg@informatik.tu-muenchen.de;
  143.                           Christian Bauernfeind,
  144.                           crisbf@theorie3.physik.uni-erlangen.de)
  145.                        - mkdir(), which needs only one argument with SAS/C
  146.                          had been called with two (got warnings).
  147.                          Now we're doing this:
  148.                            #define mkdir(x, y) mkdir(x)
  149.                          Well, it works ;-)
  150.  
  151.   V1.0.1 (07.07.1995): - re-compiled with SAS/C V6.55
  152.                        - added 68040 version
  153.                        - removed object files from archive due to size
  154.                        - fixed bug note in documentation; was not a bug
  155.                          (-> David Balazic, david.balazic@uni-mb.si)
  156.  
  157.   V1.00  (23.03.1995): - first release, compiled with SAS/C V6.51
  158.  
  159. ****************************************************************************
  160.